HyipLab
Cross Platform Mobile Application for HyipLab
  • Created : 2024-08-08
  • By : ViserLab

HyipLab is a complete investment platform Flutter(Android & IOS) mobile application. It’s developed for those people who already have our HyipLab Laravel Application.

This application is required for our web application. If you didn’t purchase the web app, please purchase it by clicking here.

If needed, we will update this App continuously and come with new features and security patches. We will try to give the best user experience to all of our clients.

Thank you for purchasing HyipLab. If you have any questions or queries that are not answered in this document, please feel free to contact us via email. We will try to respond to you as soon as possible. Thank you so much.

Requirements
Follow the below requirements.
  • Download and install Any one from these IDE(Android studio, Vs Code)
  • Flutter and Dart must be successfully installed and setup on your device in order to edit this project.(Recommended Flutter SDK version: 3.22.0)
  • Install the Flutter and Dart plugins after setting up your editor
Installation
Follow the below instruction to install the system.
  • Unzip the downloaded project and navigate to the flutter/file section, and open the project to the preferred IDE (Android Studio / Visual Code)
  • Then complete the main configuration section
  • On IDE go to the pubspecs.yaml file then clicks on the Pub Get button top of the IDE to install the libraries.
  • To run the project, connect an emulator or a real device.
  • Then press the Run button to run the project on the connected device
Folder Structure
Folders and files structure are showing below
Screens
Our app screens list are showing below
  • Splash Screen
  • Login and Registration Screen
  • Forget Password and Reset Password Screen
  • Email, Sms and 2FA Verification Screen
  • Smart Homepage
  • Deposit Screen
  • Withdraw Screen
  • Referral Screen
  • Menu Screen
  • Profile Screen
  • Change Password Screen
  • Transaction Screen
  • FAQ Screen
  • My Investment Screen
  • Invest Plan Screen
  • Balance Transfer Screen
  • 2FA enable disable screen
  • Support ticket screen
  • And more...
Main Configuration
Application Setup
1. Flutter Setup

Follow the guidelines in the following link to install the Flutter environment

OFFICIAL DOC LINK: https://docs.flutter.dev/get-started/install

2. Firebase Setup
  • Go to Firebase Website , Create an Account and than Navigate to Firebase Console
  • Create a New Firebase Project:
    • Once you are logged in, click on the "Add Project" button


    • Provide a name for your Firebase project. This name is for your reference and can be anything you like.


    • Choose or Create a Google Analytics Account:

      If you enabled Google Analytics, you'll need to choose an existing Google Analytics account or create a new one.



    • Click on 'Create Project.'


    • Wait for Project Creation:

      Firebase will take a moment to create your project. Once it's done, you'll be redirected to the project dashboard.



    • Click on 'Continue'


  • Cloud Cloud Messaging Server Key Setup
    • After Clicking On Settings Icon Click On Cloud Messaging


    • If Disable then click on 3 dot


    • Click Enable Button


    • Then, go back to the previous Firebase settings page, and you will find the "Enabled" mark.


    • Click to Add Server Key
    • Done Now you can Copy Firebase Server Key And use it in Admin Panel
    3. Google Auth Setup
    • After Clicking All Products



    • Click on Authentication



    • Click on Get Started



    • Click on Add New Provider



    • Click on Google



    • Enable And Slected an Email and click on Save Button


    • Auth Setup Done
    • Now You Need To Setup Keystore and SHA-1 KEYsetup




4. Flutter App Firebase setup with CLI

    First go to you firebase project
  • Click to Flutter Icon


  • Now Click to Install Firebase Cli



  • Now Click to Install Node JS



  • Download Nodejs LTS version and Install Node JS



  • Now Run npm install -g firebase-tools cmd in your terminal



  • Next, install the FlutterFire CLI by running the following command:

  • CMD> dart pub global activate flutterfire_cli



  • Now Setup Folder Path to environment variable:


  • Copy Following folder path

  • C:\Users\Your PC name\AppData\Local\Pub\Cache\bin



  • Now Open Edit the system environment variable:


  • Click On Environment Variable button



  • Click On Path and click Edit button



  • Click on New button and paste your Folder Path here and click OK button



  • Now Again Go to your Firebase tab and click Next



  • now go to your App Project Folder and run following Command

  • CMD 1 > dart pub global activate flutterfire_cli


    CMD 2 > flutterfire configure --project=Your FirebaseProjec tName

  • Now complete Following 1 and 2 steps



  • When you run the second command, you will receive the data below. After that, you need to select your desired platform. Once the platform selection is complete, you have to press Enter.



  • Congratulations you firebase setup in you app is successfully done



5. App Key Store Setup

To generate a keystore in Android Studio, follow these steps:

  1. Open your app code project in Android Studio.
  2. Click On Tools > Flutter > Open Android Module in Android Studio
  3. Now Wait For app Gradle Update
  4. Click on the Build menu and select Generate Signed Bundle/APK.
  5. In the Generate Signed Bundle or APK dialog, select Android App Bundle or APK and click Next.
  6. Below the field for Key store path, click Create new.
  7. Click NEXT Button:
  8. On the New Key Store window, provide the following information for your keystore and key, as shown in the image below:
    • Key store path: Select the location where your keystore should be created. Also, a file name should be added to the end of the location path with the .jks extension.
    • Password: Create and confirm a secure password for your keystore.
    • Alias: Enter a name for your key.
    • Password: Create and confirm a secure password for your key.

      Click Create New

      Click OK

      Fillup all field

      Click NEXT

      You Will get a Release App bundle

  9. Click OK to create the keystore and key.

Once you have created a keystore, you can use it to sign your Android apps for release.

Additional notes:

  • Choose a strong password for your keystore and key.
  • Store your keystore in a safe place.
  • Back up your keystore regularly.
  • If you lose your keystore, you will not be able to update your app on the Google Play Store.

Conclusion

Generating a keystore is an important step in preparing your Android app for release. By following the steps above, you can create a keystore and key that will help to protect your app and your users.



Setup
Application Setup
1. Change App Name

  • For Android
    • Open AndroidMainfest.xml to IDE from android/app/src/main
    • Change the label name inside the application tag from this file
  • For IOS
    • Open Info.plist file to IDE from ios/Runner
    • Change the app name inside the dict. Please follow the below instruction.

4. Text Change
    Change App Text
    • Go to the AppFolder/lib/core/utils/my_strings.dart and replace it with your Own TEXT.
5. Onboard Image Change
    Image Change
    • Go to the AppFolder/assets/images/onboard and replace it with your image.
6. API Base URL
  • Open lib/core/utils/url_container.dart file and change base url string
7. Change App Color
  • Open lib/core/utils/my_color.dart folder and Replace the value in the primary Color field with the prepared color code. From here, you can easily change the color of something else.
8. Change Package Name
  • Right click on project folder and click on Replace in Files

  • Search dev.vlab.hyiplab in the first indicated box and your own package name in the second marked box. Then click Replace All button
9. Edit environment variable
  • Open the lib/environment.dart file and modify your necessary options.

10. Generate SHA-1 & SHA256 KEY
Open a Terminal:
  • Open a terminal or command prompt in your project's root directory where the gradlew script is located.

    CMD: cd android

    Run the Gradle Signing Report Task:
    In the terminal, run the following command:
    Generate key code
  • CMD: ./gradlew signingReport



  • To Generate Release SHA-1 KEY add keystore.properties in you app


  • Create the key.properties File:
    First, create a new file named key.properties in the android directory of your Flutter project.

  • Edit key.properties File
    Open the key.properties file in a text editor, and add the necessary configuration properties. A common use case for this file is to store the signing configuration for your Android app. Here's an example of what the key.properties file might look like for


  • storeFile=/path/to/your/keystore.jks
    storePassword=your_keystore_password
    keyAlias=your_key_alias
    keyPassword=your_key_password

    Demo
    Now Put This Key in Firebase App
  • Before putting this key, make sure your Firebase is connected to your Flutter app, or read this Firebase setup with CLI Step.
  • Fingerprint SHA-1 and SHA-256 key add here
Publish App
Follow below instruction to publish the app
1. Android

Follow the guidelines in the following link to publish the app to Play Store.

PlayStore: https://flutter.dev/docs/deployment/android

2. IOS

Follow the guidelines in the following link to publish the app to AppStore.

AppStore: https://flutter.dev/docs/deployment/ios

Support
Support information details

Once again, thank you so much for purchasing this App. As I said at the beginning, I'd be glad to help you if you have any questions relating to this App. No guarantees, but I'll do my best to assist. If you have any queries, please feel free to contact us at Support Center.

Email Us: https://viserlab.com/support